home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-161.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  112 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12316);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-0659");
  13.  
  14.  name["english"] = "RHSA-2002-161: openssl";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated OpenSSL packages are available for Red Hat Linux Advanced Server.
  21.   These updates fix multiple protocol parsing bugs, which may cause a denial
  22.   of service (DoS) attack or cause SSL-enabled applications to crash.
  23.  
  24.   [Updated 06 Jan 2003]
  25.   Added fixed packages for the ia64 architecture.
  26.  
  27.   [Updated 06 Feb 2003]
  28.   Added fixed packages for Advanced Workstation 2.1
  29.  
  30.   OpenSSL is a commercial-grade, full-featured, and open source toolkit
  31.   which implements the Secure Sockets Layer (SSL v2/v3) and Transport Layer
  32.   Security (TLS v1) protocols as well as a full-strength general purpose
  33.   cryptography library.
  34.  
  35.   Portions of the SSL protocol data stream, which include the lengths of
  36.   structures which are being transferred, may not be properly validated.
  37.   This may allow a malicious server or client to cause an affected
  38.   application to crash or enter an infinite loop, which can be used as a
  39.   denial of service (DoS) attack if the application is a server. It has not
  40.   been verified if this issue could lead to further consequences such as
  41.   remote code execution.
  42.  
  43.   These errata packages contain a patch to correct this vulnerability.
  44.   Please note that the original patch from the OpenSSL team had a mistake in
  45.   it which could possibly still allow buffer overflows to occur. This bug
  46.   is also fixed in these errata packages.
  47.  
  48.   NOTE:
  49.  
  50.   Please read the Solution section below as it contains instructions for
  51.   making sure that all SSL-enabled processes are restarted after the update
  52.   is applied.
  53.  
  54.   Thanks go to the OpenSSL team for providing patches for these issues.
  55.  
  56.  
  57.  
  58.  
  59. Solution : http://rhn.redhat.com/errata/RHSA-2002-161.html
  60. Risk factor : High';
  61.  
  62.  script_description(english:desc["english"]);
  63.  
  64.  summary["english"] = "Check for the version of the openssl packages";
  65.  script_summary(english:summary["english"]);
  66.  
  67.  script_category(ACT_GATHER_INFO);
  68.  
  69.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  70.  family["english"] = "Red Hat Local Security Checks";
  71.  script_family(english:family["english"]);
  72.  
  73.  script_dependencies("ssh_get_info.nasl");
  74.  
  75.  script_require_keys("Host/RedHat/rpm-list");
  76.  exit(0);
  77. }
  78.  
  79. include("rpm.inc");
  80. if ( rpm_check( reference:"openssl-0.9.6b-28", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if ( rpm_check( reference:"openssl-devel-0.9.6b-28", release:"RHEL2.1") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90. if ( rpm_check( reference:"openssl-perl-0.9.6b-28", release:"RHEL2.1") )
  91. {
  92.  security_hole(0);
  93.  exit(0);
  94. }
  95. if ( rpm_check( reference:"openssl095a-0.9.5a-18", release:"RHEL2.1") )
  96. {
  97.  security_hole(0);
  98.  exit(0);
  99. }
  100. if ( rpm_check( reference:"openssl096-0.9.6-13", release:"RHEL2.1") )
  101. {
  102.  security_hole(0);
  103.  exit(0);
  104. }
  105.  
  106. if ( rpm_exists(rpm:"openssl-", release:"RHEL2.1") )
  107. {
  108.  set_kb_item(name:"CAN-2002-0659", value:TRUE);
  109. }
  110.  
  111. set_kb_item(name:"RHSA-2002-161", value:TRUE);
  112.